Closed
Conversation
Update smoke test workflows to use correct Serena tool name. The test was looking for a non-existent `serena-go` tool. Serena MCP server exposes tools like `execute_shell_command` that can be used to run shell commands including `go version`. Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix Serena Go command not found error in smoke test
Fix smoke test Serena tool reference
Jan 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Smoke tests were failing with "go command not found" because they referenced a non-existent
serena-gotool. The Serena MCP server exposes ~40 coding tools with names likeexecute_shell_command,find_symbol,find_references, etc., but no language-specific prefixed tools.Changes
smoke-claude.md,smoke-copilot.md, andsmoke-codex.mdto use Serena'sexecute_shell_commandtool instead of the fictionalserena-gotoolBefore:
After:
The test now correctly instructs agents to invoke the actual Serena tool that runs shell commands.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.